home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d18 / tp5patch.arc / TD1PAT.ARC / FIXTPC.1 next >
Text File  |  1991-04-28  |  339b  |  19 lines

  1. ;convert EXE file to BIN file
  2. ren tpc.exe tpc.bin
  3. ;load BIN file into DEBUG
  4. debug tpc.bin
  5. ;assemble at cs:a5d3
  6. a a5d3
  7. ;fix for problem with TPC /V option involving include files
  8.  
  9. ;enter new instruction
  10. cmp si,dx
  11. ;enter blank line
  12.  
  13. ;write changes to disk
  14. w
  15. ;quit DEBUG
  16. q
  17. ;convert BIN file to EXE file
  18. ren tpc.bin tpc.exe
  19.